home *** CD-ROM | disk | FTP | other *** search
- Echo "This script will try to download many megabytes of pictures from Squid's artwork pages."
- Echo "Hopefully the URL http://flyingmice.com/squid/art/sitemap.html has not changed!"
- Echo "Use Ctrl-C/D to quit, or close the HTTPResume program."
- Echo ""
-
- Set DOWNLOADDIR "Data:SquidArt"
-
- IF NOT EXISTS Data:SquidArt
- Echo "OOPS! I need the (download) directory $DOWNLOADDIR unless you edit me..."
- ELSE
- IF NOT EXISTS GetAllHTML.rexx
- Echo "OOPS! You must run this from the directory with GetAllHTML in."
- ELSE
- Sys:RexxC/Rx GetAllHTML.rexx "http://flyingmice.com/squid/art/sitemap.html" "$DOWNLOADDIR" PIC NOASK
- ENDIF
- ENDIF
-
- UnSet DOWNLOADDIR
-